home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / 4_0 / LIFER__ / PROTO / P / PMD_LIFE.H < prev    next >
Text File  |  1991-07-23  |  1KB  |  39 lines

  1. /* PMD_LIFE_WINDOW */
  2.  
  3. /* File name: LIFE_WINDOW.h */
  4. /* Function: Handle a modeless dialog */
  5. /*           This dialog operates like a window, it is not modal. */
  6. /*           Opened by:       */
  7. /*           Closed by:       */
  8. /*           Purpose:       */
  9. /* History: 7/23/91 Original by Prototyper 3.0   */
  10.  
  11.  
  12.  
  13.  
  14. /* ======================================================= */
  15.  
  16. /* Initialize the flag for this dialog, for other routines to use */
  17. void Init_LIFE_WINDOW(void);
  18.  
  19. /* We were moved on the screen, or to another screen. */
  20. void Moved_LIFE_WINDOW(Rect *OldRect, WindowPtr theWindow);
  21.  
  22. /* Update the display of this dialog, when an area is uncovered. */
  23. void Update_LIFE_WINDOW(WindowPtr theWindow);
  24.  
  25. /* Open the dialog and display it on the screen. */
  26. void Open_LIFE_WINDOW(void);
  27.  
  28. /* Handle any events for this dialog, when it is active. */
  29. void Do_LIFE_WINDOW(EventRecord *theEvent, WindowPtr theWindow, short itemHit);
  30.  
  31. /* Close this dialog and release it from memory. */
  32. void Close_LIFE_WINDOW(WindowPtr theWindow);
  33.  
  34.  
  35. /* ======================================================= */
  36.  
  37.  
  38.  
  39.